JavaScript

{dialog.object}_tabInfo Method

Syntax

{dialog.object}._tabInfo(tabId);

Arguments

tabIdstring

A tab control.

Description

Returns Javascript object with info about the tab control.

The object returned by this method has the following properties:

paneCount

Number of panes in the tab control.

currentPane

Current pane number.

nextPane

The next pane number

previousPane

The previous pane number

status

(false, on, or off) - indicates if the tab in set to auto-advance on a timer and if auto-advance is turned on

interval

if tab advances on a time, indicates the timer interval in seconds.

var tabInfo = {dialog.object}._tabInfo('TAB1');
alert(JSON.stringify(tabInfo));

See Also